home *** CD-ROM | disk | FTP | other *** search
/ Hot Super Models / Hot Super Models.iso / unix / x11 / xv2r1.tar / xv2r1 / extensions / xv / include / Xvlibint.h < prev    next >
C/C++ Source or Header  |  1991-05-06  |  3KB  |  100 lines

  1. /***********************************************************
  2. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Digital or MIT not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14.  
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. ******************************************************************/
  24. #ifndef XVLIBINT_H
  25. #define XVLIBINT_H
  26. /*
  27. ** File: 
  28. **
  29. **   Xvlibint.h --- Xv library internal header file
  30. **
  31. ** Author: 
  32. **
  33. **   David Carver (Digital Workstation Engineering/Project Athena)
  34. **
  35. ** Revisions:
  36. **
  37. **   01.24.91 Carver
  38. **     - version 1.4 upgrade
  39. **
  40. */
  41.  
  42. #define NEED_REPLIES
  43.  
  44. #include "Xlibint.h"
  45. #include "Xvproto.h"
  46. #include "Xvlib.h"
  47.  
  48. #if defined(__STDC__) && !defined(UNIXCPP)
  49. #define XvGetReq(name, req) \
  50.         WORD64ALIGN\
  51.     if ((dpy->bufptr + SIZEOF(xv##name##Req)) > dpy->bufmax)\
  52.         _XFlush(dpy);\
  53.     req = (xv##name##Req *)(dpy->last_req = dpy->bufptr);\
  54.     req->reqType = _XvCodes->major_opcode;\
  55.         req->xvReqType = xv_##name; \
  56.         req->length = (SIZEOF(xv##name##Req))>>2;\
  57.     dpy->bufptr += SIZEOF(xv##name##Req);\
  58.     dpy->request++
  59.  
  60. #else  /* non-ANSI C uses empty comment instead of "##" for token concatenation */
  61. #define XvGetReq(name, req) \
  62.         WORD64ALIGN\
  63.     if ((dpy->bufptr + SIZEOF(xv/**/name/**/Req)) > dpy->bufmax)\
  64.         _XFlush(dpy);\
  65.     req = (xv/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\
  66.     req->reqType = _XvCodes->major_opcode;\
  67.     req->xvReqType = xv_/**/name;\
  68.     req->length = (SIZEOF(xv/**/name/**/Req))>>2;\
  69.     dpy->bufptr += SIZEOF(xv/**/name/**/Req);\
  70.     dpy->request++
  71. #endif
  72.  
  73.  
  74. #if defined(__STDC__) && !defined(UNIXCPP)
  75. #define XvGetReqExtra(name, n, req) \
  76.         WORD64ALIGN\
  77.     if ((dpy->bufptr + SIZEOF(xv##name##Req) + n) > dpy->bufmax)\
  78.         _XFlush(dpy);\
  79.     req = (xv##name##Req *)(dpy->last_req = dpy->bufptr);\
  80.     req->reqType = _XvCodes->major_opcode;\
  81.     req->xvReqType = xv_##name;\
  82.     req->length = (SIZEOF(xv##name##Req) + n)>>2;\
  83.     dpy->bufptr += SIZEOF(xv##name##Req) + n;\
  84.     dpy->request++
  85. #else
  86. #define XvGetReqExtra(name, n, req) \
  87.         WORD64ALIGN\
  88.     if ((dpy->bufptr + SIZEOF(xv/**/name/**/Req) + n) > dpy->bufmax)\
  89.         _XFlush(dpy);\
  90.     req = (xv/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\
  91.     req->reqType = _XvCodes->major_opcode;\
  92.     req->xvReqType = xv_/**/name;\
  93.     req->length = (SIZEOF(xv/**/name/**/Req) + n)>>2;\
  94.     dpy->bufptr += SIZEOF(xv/**/name/**/Req) + n;\
  95.     dpy->request++
  96. #endif
  97.  
  98.  
  99. #endif XVLIBINT_H
  100.